body {
    margin: 0;
    padding: 0;
    height: 900px;
    background: url('../image/feminista-coming-soon-bg.png') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif

}

.overlay {
    height: 1100px;
    width: 2000px;
    /* Balanced at 45% opacity for a true semi-dark look */
    background: rgba(0, 0, 0, 0.60); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* Moderate blur for professional depth */
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px);
    
    /* Maintaining legibility with your white variable */
    color: var(--white-color);
}

.overlay img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
}


.subtitle {
    font-size: 20px;
    font-family:  "Nova Square", sans-serif;
    color: #ffffff;

}

.title {
    font-size: 50px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-family: "Nova Square", sans-serif;
    color: #ffffff;

}
.title span {
    color: #D1667A;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 25px 0;
    font-family:  "Nova Square", sans-serif;
    color: #ffffff;

}

.countdown div {
    font-size: 18px;
    text-align: center;
}

.countdown span {
    font-size: 40px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 18px;
    border-radius: 6px;
}

.btn:hover {
    background: #ffffff;
    color: white;
}


@media (max-width: 768px) {

    body {
        height: auto;
        padding: 20px;
    }

    .overlay img {
        max-width: 100px;
    }

    .title {
        font-size: 35px;
    }

    .subtitle {
        font-size: 18px;
    }

    .countdown {
        gap: 20px;
    }

    .countdown span {
        font-size: 30px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

@media (max-width: 380px) {

    body {
        height: auto;
        padding: 1px;
    }

   

    .overlay img {
        max-width: 90px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
    }

    .countdown {
        gap: 12px;
        padding: 5px;

    }

    .countdown span {
        font-size: 26px;
    }

    .countdown div {
        font-size: 13px;
    }

    .btn {
        font-size: 15px;
        padding: 8px 18px;
    }
}

